home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1998 #3 / Amiga Plus CD - 1998 - No. 3.iso / pd / text / amised / scripts / tolower.rexx < prev    next >
OS/2 REXX Batch file  |  1997-03-02  |  202b  |  18 lines

  1. /**/
  2.  
  3. OPTIONS RESULTS
  4.  
  5. 'Graphics OFF'
  6. 'GetASCII'
  7. a=result
  8. if (a>64) & (a<91) then
  9. do
  10. /*    'Query FLAG=1'
  11.     if (result=0) then
  12.     do*/
  13.         'Delete'
  14. /*    end*/
  15.     'Insert ASCII='||(a+32)' NOMOVE'
  16.     'Graphics ON'
  17. end
  18.